Fix some typos in messages. (#341091, Tino Meinen)
authorMatthias Clasen <mclasen@redhat.com>
Tue, 9 May 2006 02:25:46 +0000 (02:25 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Tue, 9 May 2006 02:25:46 +0000 (02:25 +0000)
2006-05-08  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_add_shortcut_folder):
* gtk/gtktextbufferserialize.c (parse_attr_element): Fix some typos in
messages.  (#341091, Tino Meinen)

ChangeLog
ChangeLog.pre-2-10
gtk/gtkfilechooserdefault.c
gtk/gtktextbufferserialize.c

index 32b3645fd34e1656b774d788b9b6e04a69ebd8f9..fd4ec71ecb26a760cbf3d736257ad81113db89e8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2006-05-08  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_add_shortcut_folder): 
+       * gtk/gtktextbufferserialize.c (parse_attr_element): Fix some typos in
+       messages.  (#341091, Tino Meinen)
+
        * gtk/gtkstatusicon.c: Some cleanups.
        
        * gtk/gtkstatusicon.c (gtk_status_icon_get_property): Silently return
index 32b3645fd34e1656b774d788b9b6e04a69ebd8f9..fd4ec71ecb26a760cbf3d736257ad81113db89e8 100644 (file)
@@ -1,5 +1,9 @@
 2006-05-08  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_add_shortcut_folder): 
+       * gtk/gtktextbufferserialize.c (parse_attr_element): Fix some typos in
+       messages.  (#341091, Tino Meinen)
+
        * gtk/gtkstatusicon.c: Some cleanups.
        
        * gtk/gtkstatusicon.c (gtk_status_icon_get_property): Silently return
index a8b199fe69ca4571dfc678e3c2a95902e401389c..c9bf0277afff0b35df90a0babfef4ff7238a9cbd 100644 (file)
@@ -6744,7 +6744,7 @@ gtk_file_chooser_default_add_shortcut_folder (GtkFileChooser    *chooser,
       g_set_error (error,
                   GTK_FILE_CHOOSER_ERROR,
                   GTK_FILE_CHOOSER_ERROR_ALREADY_EXISTS,
-                  _("shortcut %s already exists"),
+                  _("Shortcut %s already exists"),
                   uri);
       g_free (uri);
 
index f8cb1fe5f4a5bd41b2a79fa950f407e2a27761c8..8cad796bc6737f054ce8456d609baab42d580c74 100644 (file)
@@ -798,8 +798,8 @@ check_id_or_name (GMarkupParseContext  *context,
              set_error (error, context,
                         G_MARKUP_ERROR,
                         G_MARKUP_ERROR_PARSE,
-                        _("The attribute \"name\" were found twice on the <%s> element"),
-                        element_name);
+                        _("The attribute \"%s\" was found twice on the <%s> element"),
+                        "name", element_name);
              return FALSE;
            }
 
@@ -824,8 +824,8 @@ check_id_or_name (GMarkupParseContext  *context,
              set_error (error, context,
                         G_MARKUP_ERROR,
                         G_MARKUP_ERROR_PARSE,
-                        _("The attribute \"id\" were found twice on the <%s> element"),
-                        element_name);
+                        _("The attribute \"%s\" was found twice on the <%s> element"),
+                        "id", element_name);
              return FALSE;
            }
 
@@ -848,7 +848,7 @@ check_id_or_name (GMarkupParseContext  *context,
     {
       set_error (error, context,
                 G_MARKUP_ERROR, G_MARKUP_ERROR_PARSE,
-                _("<%s> element neither a \"name\" nor an \"id\" element"), element_name);
+                _("<%s> element has neither a \"name\" nor an \"id\" element"), element_name);
       return FALSE;
     }
 
@@ -1194,7 +1194,7 @@ parse_attr_element (GMarkupParseContext  *context,
        {
          set_error (error, context,
                     G_MARKUP_ERROR, G_MARKUP_ERROR_PARSE,
-                    _("\"%s\" is not a valid value of for attribute \"%s\""),
+                    _("\"%s\" is not a valid value for attribute \"%s\""),
                     value, name);
          g_value_unset (&gvalue);
          return;